home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Software Vault: The Gold Collection
/
Software Vault - The Gold Collection (American Databankers) (1993).ISO
/
cdr01
/
jock.zip
/
TOTDEM11.ZIP
/
PLUSOV1.PAS
< prev
next >
Wrap
Pascal/Delphi Source File
|
1991-02-11
|
643b
|
29 lines
program DemoOverlay1;
{demov - be sure that the OVERLAYINIT compiler directive is enabled
in the TOTFLAGS.INC file before compiling}
{$I TOTFLAGS.INC}
Uses DOS, CRT,
totSYS, totLOOK, totINPUT, totFAST, totWIN, totIO1, totMSG;
Var
MsgWin : MessageOBJ;
begin
Screen.Clear(white,'░'); {paint the screen}
with MsgWin do
begin
Init(1,' Message ');
AddLine('');
AddLine('The message unit provides a');
AddLine('very easy way of displaying');
AddLine('pop-up messages in a move-');
AddLine('able window.');
AddLine('');
Show;
Done;
end;
end.